HiSEN

github api - github api中文说明

github api的网址

1
https://api.github.com/

这里介绍两个api

1
2
#获取个人信息
https://api.github.com/users/{user};

key含义value
login登录名称hisen-yuan
id数字编号16789019
avatar_url头像地址https://avatars1.githubusercontent.com/u/16789019?v=3
name用户昵称hisenyuan
blog博客地址http://hisen.me
location地理位置China
bio个人说明Java R & D
public_repos仓库个数11
created_at创建时间2016-01-20 01:57:15Z
updated_at最后更新2017-04-20 14:03:27Z
1
2
#获取项目信息
https://api.github.com/users/{user}/repos
key含义value
id项目编号88646378
name项目名称dubbo
html_url项目地址https://github.com/hisen-yuan/dubbo
created_at创建时间2017-04-18T16:21:57Z
updated_at更新时间2017-04-18T16:23:16Z
pushed_at提交时间2017-04-19T02:33:33Z
size项目大小6514
language编程语言Java

github提供的所有api

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
current_user_url: "https://api.github.com/user",
current_user_authorizations_html_url: "https://github.com/settings/connections/applications{/client_id}",
authorizations_url: "https://api.github.com/authorizations",
code_search_url: "https://api.github.com/search/code?q={query}{&page,per_page,sort,order}",
commit_search_url: "https://api.github.com/search/commits?q={query}{&page,per_page,sort,order}",
emails_url: "https://api.github.com/user/emails",
emojis_url: "https://api.github.com/emojis",
events_url: "https://api.github.com/events",
feeds_url: "https://api.github.com/feeds",
followers_url: "https://api.github.com/user/followers",
following_url: "https://api.github.com/user/following{/target}",
gists_url: "https://api.github.com/gists{/gist_id}",
hub_url: "https://api.github.com/hub",
issue_search_url: "https://api.github.com/search/issues?q={query}{&page,per_page,sort,order}",
issues_url: "https://api.github.com/issues",
keys_url: "https://api.github.com/user/keys",
notifications_url: "https://api.github.com/notifications",
organization_repositories_url: "https://api.github.com/orgs/{org}/repos{?type,page,per_page,sort}",
organization_url: "https://api.github.com/orgs/{org}",
public_gists_url: "https://api.github.com/gists/public",
rate_limit_url: "https://api.github.com/rate_limit",
repository_url: "https://api.github.com/repos/{owner}/{repo}",
repository_search_url: "https://api.github.com/search/repositories?q={query}{&page,per_page,sort,order}",
current_user_repositories_url: "https://api.github.com/user/repos{?type,page,per_page,sort}",
starred_url: "https://api.github.com/user/starred{/owner}{/repo}",
starred_gists_url: "https://api.github.com/gists/starred",
team_url: "https://api.github.com/teams",
user_url: "https://api.github.com/users/{user}",
user_organizations_url: "https://api.github.com/user/orgs",
user_repositories_url: "https://api.github.com/users/{user}/repos{?type,page,per_page,sort}",
user_search_url: "https://api.github.com/search/users?q={query}{&page,per_page,sort,order}"